home *** CD-ROM | disk | FTP | other *** search
/ Danny Amor's Online Library / Danny Amor's Online Library - Volume 1.iso / html / faqs / faq / mpeg-faq / part5 < prev    next >
Encoding:
Text File  |  1995-07-25  |  38.7 KB  |  1,015 lines

  1. Subject: MPEG-FAQ: multimedia compression [5/6]
  2. Newsgroups: comp.graphics,comp.graphics.animation,comp.compression,comp.multimedia,alt.binaries.multimedia,alt.binaries.pictures.utilities,alt.binaries.pictures,alt.binaries.pictures.d,alt.answers,comp.answers,news.answers
  3. From: phade@cs.tu-berlin.de (Frank Gadegast)
  4. Date: 22 Aug 1994 12:30:45 GMT
  5.  
  6. Archive-name: mpeg-faq/part5
  7. Last-modified: 1994/08/22
  8. Version: v 3.2 94/08/22
  9. Posting-Frequency: bimonthly
  10.  
  11.  
  12. BEGIN -------------------- CUT HERE --------------------- 5/6
  13. organizations interested in supporting this research or discussing 
  14. other aspects of this project should contact Larry Rowe at 
  15. Rowe@CS.Berkeley.EDU (+1 510-642-5117).
  16.  
  17. ACKNOWLEDGEMENTS:
  18.  
  19. We gratefully thank Hewlett-Packard and Fujitsu who provided financial
  20. support for this work.  We also want to thank the following people for 
  21. their help:
  22.  
  23.     Jef Poskanzer who developed the pbmplus package.
  24.  
  25. [ He added the very nice patch that allows mpeg_play to decode ]
  26. [ a MPEG-stream to produce a series of pbm-files. The DOS-port ]
  27. [ of this utility is called MPEG2P11.ZIP                       ]
  28.  
  29.     ---------
  30.     Copyright (C) 1989, 1991 by Jef Poskanzer.
  31.  
  32.     Permission to use, copy, modify, and distribute this software and its
  33.     documentation for any purpose and without fee is hereby granted, provided
  34.     that the above copyright notice appear in all copies and that both that
  35.     copyright notice and this permission notice appear in supporting
  36.     documentation.  This software is provided "as is" without express or
  37.     implied warranty.
  38.     ---------
  39.  
  40.     Eiichi Kowashi of Intel and Avideh Zakhor of U.C. Berkeley who
  41.     provided valuable suggestions on motion vector searching.
  42.  
  43.     Chad Fogg of the University of Washington who has helped us 
  44.     understand many issues in MPEG coding and decoding.
  45.  
  46. ---------------------------------------------------------------------------
  47.  
  48. [ You can find this in the /pub/multimedia/mpeg-directory of Berkeley's ]
  49. [ ftp-server. Belongs to there codec.                                   ]
  50.  
  51. This directory includes 150 raw YUV frames suitable for use with the MPEG
  52. encoder.
  53.  
  54. The YUV frames are the files flower.*.tar.z.  To uncompress, use the GNU
  55. 'gunzip' program.  You should uncompress all of these files inside a
  56. directory named 'flowg'.
  57.  
  58. To run the test, simply do 'mpeg_encode flower.param'
  59.  
  60. To make sure the test worked, do 'diff flowgard.mpg result.mpg'
  61.   (there shouldn't be any difference; if there is, let us know)
  62.  
  63. Please see the file 'times,' which includes time results for various machines
  64. and compilers.
  65.  
  66. ---------------------------------------------------------------------------
  67.  
  68. [ A Public-Domain-Encoder-Kit for Unix ! Now in Version 1.2 ]
  69.  
  70. From: msimmons@ecel.uwa.edu.au (Michael Simmons - mgmt_staff)
  71. Subject: Standford MPEG codec
  72. Date: Thu, 25 Feb 1993 16:07:18 +0800 (WST)
  73.  
  74.  
  75. MPEG  Image and Image sequence compression/decompression C software engines
  76. ===========================================================================
  77.  
  78. The Portable Video Research Group at Stanford have developed
  79. image/image sequence compression and decompression engines (codecs)
  80. for MPEG, CCITT H.261, and JPEG. The primary goal of these codecs is
  81. to provide the functionality - these codecs are not optimized for
  82. speed, rather completeness, and some of the code is kludgey.
  83.  
  84. Development of MPEG, P64, and JPEG engines is not the primary goal of
  85. the Portable Video Research Group.  Our research is focused on
  86. software and hardware for portable wireless digital video
  87. communication.  For more information about current research, please
  88. send e-mail to Professor Teresa Meng at meng@tilden.stanford.edu.
  89.  
  90. COMMENTS/DISCLAIMERS:
  91.  
  92. This code has been compiled on the Sun Sparc and DECstation UNIX
  93. machines; some code has been further checked on the HP workstations.
  94.  
  95. For comments, bugs, and other mail relating to the source code, we
  96. appreciate any comments. The code author can be reached at Andy C.
  97. Hung at achung@cs.stanford.edu.  The standard public domain disclaimer
  98. applies: Caveat Emptor - no guarantee on accuracy or software support.
  99.  
  100. References related to these codecs should NOT use any author's name,
  101. or refer to Stanford University.  Rather the Portable Video Research
  102. Group or the acronym (PVRG) should be used, such as PVRG-MPEG,
  103. PVRG-P64, PVRG-JPEG.
  104.  
  105.  
  106.  
  107.                PVRG-MPEG CODEC: (MPEGv1.1.tar.Z) [ is now MPEGv1.2.tar.gz ]
  108.  
  109. This public domain video encoder and decoder was generated according
  110. to the Santa Clara August 1991 format.  It has been tested
  111. successfully with decoders using the Paris December 1991 format. The
  112. codec is capable of encoding all MPEG types of frames. The algorithms
  113. for rate control, buffer-constrained encoding, and quantization
  114. decisions are similar, but not identical, to that of the (simulation
  115. model 1-3) MPEG document.  The rate control used is a simple
  116. proportional Q-stepsize/Buffer loop that works though not very well -
  117. better rate-control is the essence for good quality buffer-constrained
  118. MPEG encoding.  Verification of the buffering is possible so as to
  119. provide streams for real-time decoders.
  120.  
  121. The MPEG codec performs compression and decompression on raw raster
  122. scanned YUV files. The companion display program for the X window
  123. system is described in section IV) below.  A manual of approximately
  124. 50 pages describes the program's use.
  125.  
  126. There are also MPEG compressed files from the table tennis sequence in
  127. tennis.mpg and the flower garden sequence in flowg.mpg.
  128.  
  129. This codec was recently tested with the MPEG decoder of the Berkeley
  130. Plateau Research group. If what you want is decoding and X display,
  131. then you might want to look into their faster public domain MPEG
  132. decoder/viewer. The Berkeley player is available via anonymous ftp
  133. from mm-ftp.cs.berkeley.edu [128.32.149.157] in
  134. /pub/multimedia/mpeg/mpeg-2.0.tar.Z.
  135.  
  136.  
  137. ACKNOWLEDGEMENTS:
  138.  
  139. Funded by the Defense Advanced Research Projects Agency.
  140.  
  141. I am especially grateful to Hewlett Packard and Storm Technology for
  142. their financial support during the earlier stages of codec
  143. development.  Any errors in the code and documentation are my own.
  144. The following people are acknowledged for their advice and assistance.
  145. Thanks, one and all.
  146.  
  147.         The Portable Video Research Group at Stanford: Teresa Meng,
  148.         Peter Black, Ben Gordon, Sheila Hemami, Wee-Chiew Tan, Eli Tsern.
  149.  
  150.         Adriaan Ligtenberg of Storm Technology.
  151.         Jeanne Wiseman, Andrew Fitzhugh, Gregory Yovanof and
  152.         Chuck Rosenberg of Hewlett Packard.
  153.         Eric Hamilton and Jean-Georges Fritsch of C-Cube Microsystems.
  154.  
  155.         Lawrence Rowe of the Berkeley Plateau Research Group.
  156.         Tom Lane of the Independent JPEG Group.
  157.         Katsumi Tahara from Sony.
  158.         Ciaran Mc Goldrick.
  159.         Karl Lillevold
  160.  
  161. ---------------------------------------------------------------------------
  162.  
  163. [ Jim Frost was putting the Berkeley-Code into a Motif and/or Xt-Widget. ]
  164. [ Its called WDGT, Version 2.0b is up-todate, but no description         ]
  165. [ was included. This is from the man-page:]
  166.  
  167. Mpeg  is  a  version  of the MPEG player from the Berkeley
  168. Plateau Research Group group as a widget.  It can be  used
  169. either as a Motif widget subclassed from XmPrimitive or as
  170. a toolkit-independant widget subclassed from Core.
  171.  
  172. Mpeg inherits from Core. The Motif version  also  inherits from XmPrimitive.
  173. The class pointer is xmpegWidgetClass. The class name is Xmpeg.
  174.  
  175. This widget was implemented by making minimal  changes  to
  176. the mpeg2.0 source code. Because of this, there are a num-
  177. ber of global variables, functions and constants  that  do
  178. not follow normal widget conventions.  Many of the mpeg2.0
  179. options are not supported yet. Shared memory may not  work
  180. -  it  has  not been tested.  On stepping through a movie,
  181. the number of frames shown per step is indeterminate.
  182.  
  183.  
  184. ---------------------------------------------------------------------------
  185.  III.6 | VMS
  186. ------------
  187.  
  188. The VMS MPEG viewer is built by acquiring the regular Unix-specific mpeg
  189. source, then getting the VMS specific code.  Using this mesh of code, you
  190. build your own VMS-compatible MPEG player.
  191.  
  192. First, get the regular UNIX Mpeg viewer per the instructions in part "c"
  193. above.  Then get the following:
  194.  
  195. Site:  mm-ftp.cs.berkeley.edu [128.32.149.157]
  196. Dir :  /pub/multimedia/mpeg/vms
  197. File:  Browse entire subdir, snag what you need
  198.  
  199. Thanks to Terry Maton for this information.  Here is some text from him
  200. which may be of help to VMS users:
  201.  
  202. First go to mm-ftp.cs.berkeley.edu in /pub/multimedia/mpeg and get the main
  203. mpeg file mpeg_play.2.00.tar.Z, then cd to vms and get the file 
  204. MPEG_PLAY-20-DECW.TAR_Z.  Now you have to decompress and tar the main file
  205. first and then the vms file.  This means that the latest version of some
  206. of the .c files are the correct ones for vms.
  207.  
  208. ---------------------------------------------------------------------------
  209.  III.7 | MAC
  210. ------------
  211.  
  212. [ If it really does what it says, it looks like the best MPEG-software ]
  213. [ that you can get. Current is version 2.0.1                           ]
  214.  
  215.  
  216. From: Maynard James Handley <maynard@elwing.otago.ac.nz>
  217. Date: Wed, 16 Feb 1994 00:01:24 -0700
  218. Subject: Mac MPEG player
  219.  
  220.  
  221. You can download Sparkle from sumex-aim.stanford.edu or any of its mirrors
  222. in info-mac/grf/util, or from any other fine mac ftp site like 
  223. mac.archive.umich.edu. 
  224.  
  225. I right now have a VERY rough version of Sparkle that handles converting 
  226. QT to MPEG. The MPEG encoding is essentially satisfactory but the user 
  227. interface is largely non-existent. I hope to release it in usable form in 
  228. about two months,
  229.  
  230.  
  231. WHAT's NEW FROM VERSION 2.0?
  232.  
  233.  
  234. WHAT's NEW FROM VERSION 1.7?
  235. % Works around a bug in the QT VM extension. This should help those people 
  236.   for whom Sparkle 1.7 crashed when a file was opened.
  237. % The progress bar now updates itself better. Looks better in B/W.
  238. % More of the default QT movie player keystrokes now work.
  239. % Notification of extensive errors in an MPEG file.
  240. % Fixed bug that displayed certain files as "slanted".
  241. % Better memory management for ultra-low memory conditions.
  242.  
  243. WHAT's NEW FROM VERSION 1.6?
  244. % Misc bug fixes and cleanups.
  245. % Way cool progress bar for showing progress on slow machines.
  246. % Opening files is much faster.
  247. % Random access and stepping backwards are both available.
  248. % Saving to QuickTime will now work much better in the background 
  249.   (much less jerky).
  250.  
  251. See the New in 1.71 file for details.
  252.  
  253. Now requires QuickTime 1.6. If you don't have it, ftp it from ftp.apple.com.
  254.  
  255. WHAT IS IT?
  256. Sparkle plays MPEGs and converts them to QuickTime movies. It uses the 
  257. standard QuickTime movie controller as its interface. It is multifinder 
  258. friendly and, with enough memory, will open multiple documents at once.
  259. It is free. I ask only that you read the enclosed README file and if you 
  260. can help with any of the issues I raise there, you mail me.
  261.  
  262. REQUIRES: 
  263. System 7 or greater.
  264. QuickTime 1.6 or greater.
  265. An 020 based mac or greater.
  266.  
  267. Maynard Handley
  268. maynard@elwing.otago.ac.nz 
  269. January 18 1994
  270.  
  271. [ And now some things he currently does ... ]
  272.  
  273. I don't do any interleaving yet, but I have code for audio and 
  274. interleaving so my next major task will be adding those. But before
  275. I start that, I'll be taking a few weeks to clean up the code I have. 
  276. Parts of the MPEG encoding use up much more memory and are much slower 
  277. than they need to be, so I'll be working my way through the Berkeley code 
  278. changing things.
  279.  
  280. I don't know how well it'll run under Mac emulation, because it 
  281. requires some pretty low level parts of the Mac system. Will the emulator 
  282. offer System 7, 32 bit color QuickDraw, QuickTime and the Thread Manager?
  283. The old mac emulators for UNIX offered none of these, but the new 
  284. emulators using the Apple supplied services for emulation might do a 
  285. better job.
  286.  
  287. BTW I have fixed all bugs I know of in 2.0 and afetr two or three days of 
  288. testing 2.01 will release it, so you should refer to 2.01 in the FAQ.
  289.  
  290. At present I am using the Berkeley 1.2 encoder source. 
  291. I have already made some changes to the way it handles MPEG sizing
  292. (the Berkeley source chopped off the edges and bottoms of movies.) 
  293. Also changes to the way B frames are handled (the Berkeley source would 
  294. sometimes skip frames at the end of a movie.)
  295. Also changes to support threading and object encapsulation.
  296. Byt the basic core is the Berkeley code. What I'll do as time goes by
  297. is successlively alter it to get it smaller (in many ways it uses four times
  298. as much memory as really necessary) and faster. And I'd like to add some 
  299. of the ideas from the Stanford code, in particular the bit-rate 
  300. limiting. The P/B search algorithms are the pure Berkeley ones, but I'll
  301. probably iddle with those as well as soon as I have time.
  302.  
  303. I keep wanting to post source, but at any given stage large parts of it are
  304. so chaotic I'd be ashamed to do so. Now I mostly have the version 1.x core
  305. source cleaned up, but all the new 2.0 features are a mess.
  306. However you might want to say in the FAQ that I have, in the past, given
  307. the source out to people who want it, on the condition that they accept that
  308. it is work in progress and has very messy parts. Also note that the source
  309. assumes you know
  310. 1) the mac OS
  311. 2) The Think Class Library
  312. 3) QuickTime
  313. 4) MPEG 
  314. all very well. If you don't understand any of this, the source won't be much
  315. use to you. (And now that I have based it on threads, it's even more complex!)
  316. (BTW not many people know Macs have threads--- it's not just OS/2)
  317.  
  318. Good to keep up friendly competition!
  319.  
  320. Maynard
  321.  
  322. ---------------------------------------------------------------------------
  323.  
  324. From: Rainer Menes <menes@statistik.tu-muenchen.de>
  325. Subject: Re: LAST REPOST: THE MPEG-FAQ Version 2.0 - Part 2
  326. Date:     Wed, 6 Oct 1993 13:20:08 +0100
  327.  
  328. Dear qt2mpeg users,
  329.  
  330. I like to announce a new version of my qt2mpeg util. This version is a 
  331. beta  version but should be very stable I hope.
  332.  
  333. The best news about the new version is that it supports Quicktime to MPEG
  334. conversation of any length. The last version, as some of you have 
  335. reported, had a very seriuos bug which crash your mac very badly. Now 
  336. this shouldn't happend any more.
  337.  
  338. I putted the stuff on my ftp site suniams1.statistik.tu-muenchen.de in the
  339. dir incoming/qt2mpeg.
  340.  
  341. What will you need? It depends if you are a firsttime user or you are 
  342. using the older version right now.
  343.  
  344. 1. Firsttime user should get qt2mpeg1.1b.sit.bin. This includes all you 
  345.    need to do the qt to MPEG conversation.
  346.    
  347. 2. To update your older version get only qt2mpeg_update.sit.bin. This 
  348.    will save bandwidth on internet (Thank you),and replace the old files 
  349.    with the new once.
  350.    
  351. Some fun stuff is also in this dir. To test my new qt2mpeg I made a mpeg 
  352. movie with a realtime length of 1 min. The size is 192x144 with 25 fps.
  353. The movie was produced from some videos I made 1992 in Italy while 
  354. skiing there. The cut was done with Adobe Premiere 3.0 and than converted
  355. with qt2mpeg 1.1b to a mpeg movie. The first scenes show myself and the 
  356. last two show me and Claudia a good friend of mine (Thanks Claudia). Hope 
  357. you find this movie fun to watch. (I will try a second one next year in 
  358. 382x288 with 25fps) The file is called SkiRainer.mpg and is about 1.2 
  359. MByte in size. The compression rate is 1:102 and the quality is still 
  360. very good I think.
  361.  
  362.  
  363. This is beta version qt2mpeg 1.1!
  364.  
  365. If you find my utils usefull please send me nice postcard!!!!! You will 
  366. find address below at the end of this readme file.
  367.  
  368. This is my second beta version of Quicktime to MPEG, so you will find bugs.
  369.  
  370. Changes from the version 0.1
  371.  
  372. - The qt2yuv converter now runs even when used on non truecolor screens.
  373.   Sorry for this former bug. I allway run my Quadra in truecolor and never
  374.   tested it in an other mode.
  375. - The MPEG encoder now is version 1.2 and not 1.0 alpha. (mpeg)
  376. - The MacMiNT version is updaten to the lastest status. The background
  377.   feature now work great.
  378. - The old version only runs on a 68040 with FPU so all users without a
  379.   full blow Quadra where not able to run the software. Now you can run
  380.   this software on an 68030 with 68882. Hopefully with softfpu the
  381.   Centris machines with a 68LC040 will be able to run this converter too. 
  382.   Please let me know if not.
  383. - added a new MPEG converter to the software. After alot of pproblems
  384.   I got the mpeg encoder from Berkeley running (mpeg_encode).
  385. - added a new program called qt2yuvBerkeley. This will generate the 
  386.   different yuv files and an other shell script to make conversation
  387.   as easy as possible.
  388.  
  389. Changes from the version 0.5b
  390.  
  391. - removed the stanford encoder from the distribution. Only takes space
  392.   and isn't as fast the berkeley encoder. (Also it produces three times
  393.   as mutch files as the berkeley once. For big movies this might get a 
  394.   problem).
  395. - change berekeley encoder to the new version 1.2. It works now with alot 
  396.   better quality. (Now all feature of the UNIX version). Thanks to Larry
  397.   Rowe and his team.
  398. - dropped the qt2yuv program, because it only produces stanford encoder 
  399.   files.
  400.  
  401. - qt2yuvBerkeley got some bug fixes. Main changes:
  402.   1. For some reasons the display window does show the movie centered.
  403.      This bug is fixed now. All movies should work without problems.
  404.      I also tested it with Adobe Premiere 3.0 which produce multiple
  405.      segment files with differned compressor and it worked.
  406.   2. The bug which cause a unrecoverble crash when reaching the heaplimit 
  407.      is fixed. The converter stops when the heapspace get below 100 KByte. 
  408.  
  409.   3. Added support for YUV conversation of qt movies of any length.
  410.      First the converter will count all frames in the qt movie and inform
  411.      you in its statuswindow about it. Now you have to enter the startframe
  412.      on which the converter starts with it conversation. Next you will be 
  413.      asked if you want continuemode or not. 
  414.      
  415.      Yes = if you convert multiple segment keep the overall startframe 
  416.            in the parameter file allways 0.
  417.      No = The overall startframe is set to the actual startframe!!! Might
  418.           be usefull when converting only a special part of the movie.
  419.      
  420.      y or n is ok to select on of this options!!!
  421.      
  422.      After you have reached the end of the conversation you will be 
  423.      informated how many frames the converter could convert in this 
  424.      session. If you didn't reach the end write down the number of the 
  425.      continue startframe and quit the converter. Now restart it and use the
  426.      same parameters and set the new startframe to the number the last 
  427.      run told you.
  428.  
  429. - removed sources of the encoder because it took alot of space. All of 
  430.   you with ftp access are able to get the source from toe.cs.berkeley.edu.
  431.        
  432. Software you will need too: You could use either mpeg player 0.3 (no 
  433. suppport for it anymore. Stop because Sarkle is far better and Apple will 
  434. bring MPEG playing support next year for Quicktime) or Sparkle 1.6. If you 
  435. love a good Mac interface Sparkle is the way to go.
  436.   
  437. Because this is a beta version I like to get your feedback. So if you find
  438. something you don't like, problems or what ever, sende me a mail and tell
  439. me about. Thank you.
  440.  
  441. Here first some short intro to my approche to convert Quicktime movies to
  442. MPEG's. First the Quicktime to YUV converter is a FutureBasic program which
  443. reads in any Quicktime movie and converts it to a three seperate Y,U,V 
  444. files. YUV is color model used in video technics as for example MPEG. This
  445. program should be really mac like to use. Sadly I couldn't make this
  446. program
  447. ran in background. I contacted the developers of FutureBasic, but they
  448. still
  449. don't know why my code wont run in background. I hope I could fix this in
  450. a future version. The YUV to MPEG conversation is handled under MacMiNT,
  451. a multitasking UNIX like development enviroment. I prefer to use MacMiNT 
  452. because the MPEG converter which might run for hours, could run easy in 
  453. background with out modifing the source code. This version of MacMiNT now 
  454. has a stable background feature. I hope you will love MacMiNT as much as 
  455. I do. I have also a version of the MPEG encoder which runs under MPW shell,
  456. but without the background feature. (If you are interested in this code
  457. send mail to me). 
  458.  
  459. The MPEG converter is based on the Berkeley mpeg 1.2 encoder you will find
  460. on
  461. toe.cs.berkeley.edu. The YUV converter was done by me as said befor in 
  462. FutureBasic to speedup development time alot. As you see this software is 
  463. first approche to help you using MPEG. I hope a friend of mine who has 
  464. writen Sparkle will continue to work on a MPEG encoder integrated into 
  465. Sparkle.
  466.  
  467. You will find this software on:
  468.  
  469. suniams1.statistik.tu-muenchen.de:/pub/mac/MPEG/encoder/...
  470. (131.159.64.1)
  471.  
  472. ---------------------------------------------------------------------------
  473.  III.8 | ATARI
  474. --------------
  475.  
  476. [ Bainstorm is not continuing to develop their MPEG-Player for ]
  477. [ the Atari, really sad :o( Maybe somebody can help them ?     ]
  478.  
  479.  
  480. From: laurent@brasil.frmug.fr.net (Laurent Chemla)
  481. Subject: MPEG-FAQ - next version
  482. Date: Fri, 10 Sep 1993 14:39:39 +0000 (GMT)
  483.  
  484.   Frank,
  485.  
  486.   Of course you're right. Raphael Lemoine replied quickly, directly online
  487. on Compuserve, and as the author of our MPEG software he's quite disapointed
  488. by the little interest there is about.
  489.  
  490.   As a commercial entity, Brainstorm is trying to sell his work. But this
  491. kind of work is not an easy thing to sell. A few developpers asked us about
  492. our software, but could'nt pay for it. An easy solution would be to sell it
  493. to Atari Corp directly, and then developpers could get it from Atari at low
  494. price. But Atari licensed Cinepak for this usage, and they aren't interested
  495. in buying our MPEG. So we decided to forget it for a while.
  496.  
  497.   Our MPEG runs at the same (or so) rate, not depending on the resolution.
  498. It uses some of our 'real time' dithering algorithms on Atari. Added to the
  499. work on the DSP coding, you can see it's a good piece of software Raphael
  500. did. But it's not enough for selling it as a Shareware library, because it
  501. does'nt handle P and B frames nor the sound, and we wont work on it if we
  502. cant expect to be paid for this work. I have personnally written a few news
  503. about this software in the Atari's Usenet conferences, but only got 3 mails
  504. in return, and nothing really exciting.
  505.  
  506.   Anyway, be sure we will tell you if anything new occurs about that.
  507.  
  508. Laurent Chemla @ Brainstorm
  509.  
  510. --
  511. Laurent Chemla : chemla@cnam.cnam.fr or laurent@brasil.frmug.fr.net
  512. Brasil BBS  - +33 1 44 67 08 44 -  Atari France developpers support
  513.  
  514. ---------------------------------------------------------------------------
  515.  III.9 | AMIGA
  516. --------------
  517.  
  518. [ There are lots of other MPEG-ports for the AMIGA ]
  519.  
  520. mpeg2_0amiga.lha     gfx/show    50K  40 Berkeley MPEG player 2.0
  521. mpegplay201_bin.lha  gfx/show   147K  43+MPEG player V2.01 executable
  522. mpegplay201_src.lha  gfx/show   170K  43+MPEG player V2.01 sources
  523. mpeg_player122.lha   gfx/show   206K 104+MPEG Player 1.22 (for all Amigas)
  524.  
  525. ---------------------------------------------------------------------------
  526.  III.10 | NEXT
  527. --------------
  528.  
  529. [ This piece of software is now available in Version 2.5. Its usally ]
  530. [ called MPPLAY.                                                     ]
  531.  
  532. This is a new release of MPEG_Play.app, a threaded program for displaying multiple MPEG videos with capability for visual cueing ("scrubbing").  Release 3.0 is required to run the application, so it should probably be archived with other 3.0 binaries.
  533.  
  534. MPEG Play is in the process of evolving from a bare-bones MPEG animation
  535. viewer into a full-fledged NeXT application.  The current version is multi-
  536. threaded and supports the simultaneous loading and playback of multiple
  537. "mini-videos" at different rates as high as 28 frames per second.  There
  538. is a group of "live controls" in the Window Settings panel which can be
  539. manipulated even while the video is playing.  There is also a Transport
  540. panel with tape deck buttons.  Both can be found in the Tools submenu.
  541.  
  542. MPEG Play will keep track of different settings for each window, reflecting
  543. the current values in the various information panels whenever you select a
  544. new main window.  When playback is complete, a few interesting performance
  545. statistics are shown in the Playback Statistics panel.  This panel, as well
  546. as a File Info Panel, can be found in the Info submenu.
  547.  
  548. Notes:
  549.  
  550. You may have to wait some time after opening a new file before it will be
  551. shown.  The MPEG file must be decoded into memory to allow rewind and random
  552. access.  The frames will be counted as they are loaded.
  553.  
  554. Playback is slightly slower when the Transport panel is visible, simply
  555. because it takes some CPU time to update the frame indicators.  For maximum
  556. speed, close the Transport panel and use the menu options for Stop, Pause,
  557. and Play.
  558.  
  559. This version is not recommended for NeXT systems without substantial system
  560. RAM and swap space.  I have not personally used this software on anything
  561. other than a NeXTdimension with 88 MB of RAM, but future versions of MPEG
  562. Play will be adjusted for any problems with other systems.
  563.  
  564. I have updated to version 2.0 of the mpeg_play code from Berkeley.
  565. B&W support is temporarily disabled.
  566.  
  567. You can reach me as brianw@sounds.wa.com
  568.  
  569.  
  570.     Brian Willoughby    Software Design Engineer, BSEE NCSU
  571. NeXTmail welcome here    Sound Consulting: Software Design and Development
  572. BrianW@SoundS.WA.com    Bellevue, WA
  573.  
  574. ---------------------------------------------------------------------------
  575.  
  576. [ This archive is usally called MPEGNEXT. ]
  577.  
  578. This is a hack of Version 2.0 of the MPEG decoder from the Berkeley
  579. Plateau Research Group.  (Please read their README.)  Basically, I
  580. replaced all the X-Windows stuff with NeXTstep windows and discarded
  581. all of the dithering stuff.  Don't need it since the NeXT is true color.
  582. This version is specifically optimized for a 16bit color NeXTstation.
  583. I did have to sacrifice some image quality to get the speed up.  I don't
  584. know what its performance is because I use a NeXTdimension.  In fact I
  585. would very much appreciated if some one would mail me the performance of
  586. this decoder.  I am hoping for 6 frames/second.  The NeXTdimension gets
  587. 5.5 frames/second.
  588.  
  589. To get other MPEG movies please read the notes from the Berkeley
  590. Plateau Research Group.
  591.  
  592. gary@isr.recruit.co.jp
  593. Media Design Center
  594. Recruit Co.
  595. Tokyo, JAPAN
  596.  
  597.  
  598. ===========================================================================
  599.  IV | MPEG-RELATED HARDWARE
  600. ===========================
  601.  
  602. [ We even have MPEG-AUDIO-solutions now, but still not a lot of ]
  603. [ information about them :o( who knows more ?                   ]
  604.  
  605. From: popp@iis.fhg.de (Harald Popp)
  606. Subject: MPEG audio Layer-3 at AES Amsterdam
  607. Date: Wed, 16 Feb 1994 11:12:33
  608.  
  609. MPEG- Audio Layer-3: Best Music Quality at Lowest Bitrates!
  610.  
  611. Audio Export: PC board with realtime Layer-3 audio codec
  612. Philips PKI: MAGIC codec for telecommunication networks
  613. Telos Systems: ZEPHYR codec for ISDN, Switch 56 and other networks
  614. Dialog 4: MUSICTAXI TYPE 3 for telecommunication networks and various PC 
  615.           solutions
  616. Fraunhofer-IIS: Objective Quality Assessment with the NMR meter 
  617.                 (Noise-to-Mask Ratio)
  618.  
  619. ---------------------------------------------------------------------------
  620.  
  621. [ The first real MPEG-cards arrived ! ]
  622.  
  623. From: jmm73@frmug.fr.mugnet.org (Jean-Michel Mercier)
  624. Subject: Info for the MPEG FAQ
  625. Date: Tue, 22 Jun 93 22:07:34 MET DST
  626.  
  627. VITEC VIDEO-MAKER
  628. =================
  629.  
  630. Since December 92, there is a french MPEG PC-plugin. It's called
  631. VIDEO MAKER and it's manufactured by :
  632.  VITEC
  633.  3 bis rue P. Baudry
  634.  92140 CLAMART
  635.  FRANCE
  636.  tel (33) 1.46.29.03.00
  637.  fax (33) 1.46.29.03.04
  638.  
  639. Features :
  640. Claims to be the world 1st MPEG board.
  641. 2 selectable video inputs NTSC/PAL/SECAM/S-VHS
  642. Picture up to 768x576 (by step of 16)
  643. Colors  : 256/32K/16M
  644. Frame : 1 to 25 Fr/s
  645. No need for VESA Features connector
  646. 16 bit short card, no dip nor jumper, no DMA nor IRQ
  647. Windows software :
  648. IMAGER : record & compress moving or still picts.
  649. MPEG PLAYER : full software MPEG decoder/player, doesn't need the board
  650. (it seems that you can freely give this soft with your MPEG seqs.)
  651. MULTIMEDIA MANAGER VM : well known software from Multimedia Telecom to
  652. build your scripts with icons, sync. with sounds, etc...
  653. DLL for MCI & AVI availables
  654.  
  655. What it's not said in the commercial :
  656. The card doesn't sample sound today but a daughter board should become
  657. available (you can still sample sound separ and the resync with M. MANAGER)
  658. You can't use the full specs at the same time (ie 768x576, 16M colors,
  659. 25 fr/s) even with a 486 as the compression is made by software
  660. In fact, the sequence is 1st stored in memory using a proprietary
  661. compression scheme and saved to disk as .VSF files. Then the offline
  662. compression could be achived. It seems that a PC with 8Mbytes of RAM
  663. should be able to record about 10 to 30 secondes of video.
  664.  
  665. What's on the board :
  666. The board use Philips Digital Desktop video chipset (TDA8708+TDA8709+
  667. SAA7191+SAA7197) witch provides 4:2:2 YUV video @ 14.75 Msmp/s
  668. It doesn't use the SAA7192 color space converter to get RVB so this
  669. should be done by software.
  670. There is also an XC3042-100 FPLA from Xilinx and 1Mx8bits of dynamic
  671. ram (70ns). Probably used for pre-compression.
  672.  
  673. The public price is 3500FF ($625) but Surcouf (Paris' computer store)
  674. sells it about 2300FF ($410).
  675. There was an ad in march issue of BYTE (p127) @ $695. For US & canada
  676. the ad said to phone to 404-921-6167 or fax to 404-921-9243.
  677.  
  678. There is an test of this card (9 other ones) in june issue of the french
  679. magazine "Multimedia Solutions".
  680.  
  681.  
  682.      NOTE : I have nothing to do with VITEC. This is not an ad. It is
  683.      my personnal understanding of VITEC's ads, magazines reports and
  684.      phone calls to VITEC. Please contact VITEC for any contractual
  685.      informations.
  686.  
  687.  
  688. MPEG CHIPS
  689. ==========
  690.  
  691. Some new chips are about to be available from SGS-Thomson :
  692. STI3223 : motion estimator controller, intended to be used with
  693. previously released STI3220
  694. STI3230 : MPEG coder
  695. STI3400 : MPEG coder (STI3240 coder + DCT processor)
  696. STI3500 : MPEG 2 coder
  697. Do you want me to get some more details fast ?
  698.  
  699. TI introduce the TMS320AV110 MPEG audio decoder based on TI's 16 bits
  700. DSPs (about $14).
  701.  
  702. Some other boards
  703. =================
  704.  
  705. OPTIBASE's MPEG2000 (Herzliya - Israel, Canoga Park - Calif.)
  706. It use an CCUBE (witch?), DSP56001 ant DCT chips from LSI.
  707.  
  708. ---------------------------------------------------------------------------
  709.  
  710. [ And there it is, just real magic ;o) ]
  711.  
  712. ReelMagic MPEG-Video-decoder-card from Sigma Design
  713.  
  714. Video-Decoder-Specification
  715. - MPEG-Video-Standard ISO 11172-Paris
  716. - 32.768 colors
  717. - Resolution 1024x768
  718. - 30 frames/s
  719. - Video Overlay
  720.  
  721. Audio-Specification
  722. - MPEG-Audio Level I/II
  723. - 8/16-bit PCM, 44 kHz sampling-rate
  724. - Synthesizer Yamaha OPL2 compliant
  725. - Audio Mixer PCM with FM or MPEG
  726. - Frequence 20 Hz - 20 kHz
  727. - Audio-Out Stereo-Headphone
  728.             2x75mW with 32 Ohm
  729.             2 V rms with 100 Ohm
  730.  
  731. System-Specification
  732. - Standard ISA PBM PC 16 bit card
  733. - VESA compliant Feature Connector 15 Pin
  734. - DMA and IRQ-selection via Software (no Jumpers)
  735. - SCSI-I, CD-ROM-driver (MSCDEX 2.2)
  736. - Driver for Windows 3.1 and DOS 5.0 and higher
  737. - Support of Windows OLE 2.0
  738. - MPEG-compatible with VideoCD (CD-I coded movies !!!)
  739. - Audio-compatible with DOS games and MPC sound standard
  740.  
  741.  
  742. Price at Cebit'94:
  743. - Reel Magic Lite (just the card) DM 679.-
  744. - Real Magic with SCSI-interface  DM 899.-
  745. - Real Magic Kit with Sony CD-ROM DM 1299.-
  746.  
  747. Contact:
  748.  
  749. SIGMA Designs, Inc.
  750. Leopoldstrasse 28a/II
  751. 80802 Muenchen/GERMANY
  752. Fon: ++49 89 336443
  753. Fax: ++49 89 335967
  754.  
  755. or
  756.  
  757. SIGMA DESIGNS, Inc.
  758. 47900 Bayside Parkway
  759. Fremont, CA 94538 USA
  760. Fon: (510) 770-0100
  761. Fax: (510) 770-2640
  762. COMPUSERVE: GO DTPVEN
  763. Sigma BBS: (510) 770-0111 (9600-8-1-N)
  764.  
  765. ---------------------------------------------------------------------------
  766.  
  767. [ Do you want to watch Cinama-Movies on your PC's ? I do ... ]
  768.  
  769. From: Yasser.El.Chemaytilly@aedi.insa-lyon.fr (Yasser.El.Chemaytilly)
  770. Subject: Re: CD-i, and the MPEG format
  771. Date: 4 Mar 1994 16:00:03 GMT
  772. Organization: INSA Lyon - Computer Science Dept / France
  773.  
  774.  At this time, there are 3 ways of playing a Video-CD-I:
  775.  
  776.  - the Phillips CD-i with the Full Motion Video Card (approx $950 in Europe)
  777.  - the Amiga CD^32 with its Full Motion Video Card (approx $670 in Europe) 
  778.  - a PC, 486 DX or DX2 with the Reel Magic MPEG card and a Sony 
  779.           CD-ROM player (for the moment, it only works with the Sony
  780.           player) (the card costs approx $650 in Europe without 
  781.                CD-ROM player)
  782.  
  783.   The quality of the playback is identical and very good with either the CD-i or
  784.    the CD^32 (same manufacturer) but is a little bit lossy with the PC card.
  785.  
  786.    Anyway, the Reel Magic card is practically as expensive as a full
  787.    CD^32 system, CD-i (+FMV cartidge) being only a little more expensive. 
  788.  
  789.    There may be software for playing Video-CDs on PCs, but I haven't heard 
  790.    of them yet.
  791.  
  792. ---------------------------------------------------------------------------
  793.  
  794. [ Well and there's the XingIt!-card now, I try and translate the ]
  795. [ German description.                                           ]
  796.  
  797. Features:
  798.  
  799. - realtime MPEG-Video-card for 386/486 and Pentium
  800. - Framegrabber for Xing-Format I-frame only movies from
  801.   Video-In in 24-bit/pixel QSIF resolution
  802. - PAL/SECAM and NTSC
  803. - Xing-MPEG-to-real-MPEG compression software
  804. - different playing modes up to 320x240/30frames
  805. - selectable Refreshrate
  806. - Windows-Applications, incl. Window for Windows MCI and Media Player
  807.  
  808. Price: DM 1499.- (so about $900)
  809.  
  810. ---------------------------------------------------------------------------
  811.  
  812. [ Ha, a game-console with MPEG-support, a bit crazy, but the best things ]
  813. [ get pushed by nig-nag <grin>                                           ]
  814.  
  815. From: George Sanderson <G.Sanderson@ais.gu.edu.au>
  816. Date: Thu, 3 Feb 94 12:28:31 +1000
  817. Subject: Re: THE MPEG-FAQ [Version 3.0]
  818.  
  819. You may want to add to your MPEG FAQ that the Amiga CD32 game console is
  820. able to play both standard MPEG VideoCDs and the CD-I specific VideoCDs,
  821. with the addition of the MPEG card which is available now.
  822.  
  823. As far as I know, the recommended retail price just for the CD32 in the USA
  824. is US$399 but it is selling below that now (US$376).  In Australia, it is
  825. selling for AUS$594.  It has been released in Europe in late 1993 and
  826. is selling very well (120,000+ units sold as of Jan'94).  The major release
  827. date for the US market is sometime in March.  There are at least
  828. 20 CD32 specific titles available (and it can play CDTV titles as well)
  829. and over 100 CD32 titles will be released in 1994.  The price of the MPEG
  830. module is (guessing) US$299.  Commodore is selling the units directly
  831. to wholesalers.
  832.  
  833. here is some info about the Amiga CD32 (made by Commodore) with
  834. info about its MPEG module mixed in (i'll mail you more info about
  835. the MPEG module when I get it):
  836.  
  837.                      AmigaCD32         
  838.  
  839.        CPU/Speed: 68EC020 @ 14MHz
  840.     Architecture: 32 bit
  841.       Throughput: 3.5 MIPS      
  842.         Chip RAM: 2 Megs of DRAM
  843.         Fast RAM: None
  844. Non-Volatile RAM: 1 KB
  845.  
  846.     Custom Chips: I/O ports, Audio and Interrupt controller,
  847.                   DMA Controller, Video data controller (AGA chipset)
  848.                   CD-ROM controller
  849.  
  850.   Animation CELS: 8 Sprites per scanline (64-bit)
  851.                   & Unlimited Bobs (blitter objects)
  852.  
  853.      Video Modes: can display upto 1280 x 512 in 15 kHz
  854.          Colours: 256,000/16.7 Million   
  855.  
  856.            Sound: Stereo 8 bit         
  857.                   Stereo 18 bit CD-DA  
  858.                   DSP planned          
  859.  
  860.           CD-ROM: Double Speed         
  861.                   Top Loading          
  862. Software Video
  863.           Player: Partial Screen using 4096 Colours (CDXL)
  864.  
  865.             MPEG: Available now (see below)
  866.          PhotoCD: Available as third party software
  867.  
  868.  Game Controller: 11 Buttons           
  869.  
  870. Supported CD Standards
  871. ----------------------
  872. AMIGA CD32
  873. Audio CD
  874. CD+G (Graphics)
  875. Most CDTV including CDXL
  876. VideoCD (MPEG1) - see below
  877.  
  878. Connectors + Switches
  879. ---------------------
  880. 2 x Games Controller/Joystick/Mouse ports
  881. High Speed auxiliary connector for keyboard and virtual reality gloves, etc.
  882. Local slot expansion connector
  883. Power Switch and Indicator LED
  884. Reset Switch (momentary)
  885. Headphone jack and Volume slider
  886.  
  887.  
  888. MPEG Module (optional)
  889. ----------------------
  890. Full screen, Full Motion Video and Stereo Audio replay direct from disc;
  891. total running time 74 minutes
  892. 352 x 288 at 25 Frames per Second (PAL mode - different for NTSC)
  893. Able to play most CD-I MPEG specific titles (they demonstrated that
  894. at the World of Commodore shows playing Star Trek 6, Top Gun, etc.)
  895.  
  896. The Amiga CD32 hardware is able to genlock its graphics and sound on top of
  897. the MPEG output.  Additionally, while the MPEG module is playing, the CD32
  898. has about 80% of CPU left to use - this could mean some interesting games
  899. with video backdrops.
  900.  
  901. The MPEG module comes with a MPEG disk that has a few rock video clips.
  902.  
  903. Audio Output
  904. ------------
  905. 2 channel, 4 voice stereo using 8 bit digital/analogue converters
  906. 18 bit audio CD stereo at 44kHz
  907.  
  908. Video Outputs
  909. -------------
  910. S-Video, Composite and RF (UHF) for TV
  911.  
  912. Included
  913. --------
  914. 11 Button Game Controller
  915. "Welcome" Disc
  916. Consumer Information Manual
  917. CD32 Users Guide
  918. RF video and Stereo audio cables
  919. + usually packed with 2 games
  920.  
  921. Physical
  922. --------
  923. 212 mm x 311 mm x 81 mm
  924. CPU 1.44 kg
  925. Power Supply 1.53 kg
  926.  
  927. Warranty
  928. --------
  929. 1 Year, return to regional service centre
  930.  
  931. Power Supply
  932. ------------
  933. External, 22 Watts
  934.  
  935. ---------------------------------------------------------------------------
  936.  
  937. Please refer here to the section in the MPEG-FAQ Version 1.1,
  938. because I did not get a lot of new infos. There is a big list
  939. of MPEG-related chips, including vendor adresses.
  940.  
  941.  
  942. ===========================================================================
  943.  V | MAILBOX-ACCESS
  944. ===================
  945.  
  946. ---------------------------------------------------------------------------
  947.  V.1 |
  948. ------
  949.  
  950. GENOA has right now a new BBS in Germany (Stefan Hartmann will put new
  951. MPEG-software there too), phone:
  952.  
  953.   ++ 49 211 686756    (16.8Kb/sec with US Robotics Dual Standard)
  954.  
  955. ---------------------------------------------------------------------------
  956.  V.2 |
  957. ------
  958.  
  959. This is the phone number of Xing Technologies' BBS:
  960.  
  961.   805-473-2680 (2400b) (USA)
  962.  
  963. Bryan Woodworth <bryanw@rahul.net> wrote:
  964.  
  965. Would you also please add, that the Xing BBS now supports v.32bis and HST !
  966. I am not sure on HST, but I am sure it supports v.32bis.  However, I have a
  967. v.32bis modem, and could only connect at 9600. I think they do not have the
  968. modem configured properly.
  969.  
  970.  
  971. ===========================================================================
  972.  VI.1 |  FTP-ACCESS (PD)
  973. ========================
  974.  
  975. Please contact these ftp-sites for files before e-mailing to me !!!
  976.  
  977. Site: busop.cit.wayne.edu
  978. Dir : /sys/pub/simpsons/incoming/mpeg
  979.       /sys/pub/simpsons/incoming/mpeg1
  980.  
  981. Site: amiga.physik.unizh.ch [130.60.80.80]
  982. Dir : pub/aminet/
  983.  
  984. Site: ftp.cica.indiana.edu [129.79.20.17]
  985.  
  986. Site: ftp.cs.tu-berlin.de [130.149.17.7] or
  987.       quepasa.cs.tu-berlin.de
  988. Dir : /pub/msdos/incoming, /pub/msdos/dos/graphics,
  989.       /pub/msdos/windows3/graphics
  990.       /pub/aminet/
  991.  
  992. Site: ftp.germany.eu.net [192.76.144.75]
  993.  
  994. Site: ftp.luth.se
  995. Dir : /pub/graphics/animation/mpeg
  996.  
  997. Site: ftp.rahul.net [192.160.13.1]
  998. Dir : /pub/bryanw/pc/mpeg
  999.  
  1000. Site: ftp.uni-erlangen.de [131.188.1.43]
  1001. Dir : pub/aminet/
  1002.  
  1003. Site: ftp.uni-kl.de [131.246.9.95]
  1004. Dir : pub/aminet/
  1005.  
  1006. Site: ftp.wustl.edu [128.252.135.4]
  1007.  
  1008. Site: isfs.kuis.kyoto-u.ac.jp
  1009.  
  1010. Site: litamiga.epfl.ch [128.178.151.32]
  1011. Dir : pub/aminet/
  1012.  
  1013. END ---------------------- CUT HERE --------------------- 5/6
  1014.  
  1015.